\n {decoded.map((entry, index) => (\n \n {entry.content}\n \n ))}\n
\n \n : As extends keyof JSX.IntrinsicElements\n ? Merge \n \n {getFrameSource(stackFrame)} @ {stackFrame.methodName}\n \n \n content{message}
\n \n {activeIssue.title}\n
\n\n \n {decoded.map((entry, index) => (\n \n {entry.content}\n \n ))}\n
\n {f.methodName}
\n Source
\n \n {leadingFrames.map((frame, index) => (\n
\n Call Stack
\n \n {visibleCallStackFrames.map((frame, index) => (\n
\n >\n ) : undefined}\n {canShowMore ? (\n <>\n \n >\n ) : undefined}\n >\n )\n}\n\nfunction HotlinkedText(props: { text: string }) {\n const { text } = props\n\n const linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*/i\n return (\n <>\n {linkRegex.test(text)\n ? text.split(' ').map((word, index, array) => {\n if (linkRegex.test(word)) {\n const link = linkRegex.exec(word)\n return (\n {message}
\n \n {activeError.error.name}:{' '}\n
\n {isServerError ? (\n '\n\n return element.querySelector('area')\n },\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap\nvar focusAreaTabindex = {\n element: 'div',\n mutate: function mutate(element) {\n element.innerHTML =\n '' +\n '
'\n\n return false\n },\n validate: function validate(element, focusTarget, _document) {\n if (platform.is.GECKO) {\n // fixes https://github.com/medialize/ally.js/issues/35\n // Firefox loads the DataURI asynchronously, causing a false-negative\n return true\n }\n\n var focus = element.querySelector('area')\n focus.focus()\n return _document.activeElement === focus\n },\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap\nvar focusAreaWithoutHref = {\n element: 'div',\n mutate: function mutate(element) {\n element.innerHTML =\n '' +\n '
'\n\n return element.querySelector('area')\n },\n validate: function validate(element, focusTarget, _document) {\n if (platform.is.GECKO) {\n // fixes https://github.com/medialize/ally.js/issues/35\n // Firefox loads the DataURI asynchronously, causing a false-negative\n return true\n }\n\n return _document.activeElement === focusTarget\n },\n}\n\nvar focusAudioWithoutControls = {\n name: 'can-focus-audio-without-controls',\n element: 'audio',\n mutate: function mutate(element) {\n try {\n // invalid media file can trigger warning in console, data-uri to prevent HTTP request\n element.setAttribute('src', gif)\n } catch (e) {\n // IE9 may throw \"Error: Not implemented\"\n }\n },\n}\n\nvar invalidGif =\n 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ'\n\n// NOTE: https://github.com/medialize/ally.js/issues/35\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap\nvar focusBrokenImageMap = {\n element: 'div',\n mutate: function mutate(element) {\n element.innerHTML =\n '' +\n '
'\n\n return element.querySelector('area')\n },\n}\n\n// Children of focusable elements with display:flex are focusable in IE10-11\nvar focusChildrenOfFocusableFlexbox = {\n element: 'div',\n mutate: function mutate(element) {\n element.setAttribute('tabindex', '-1')\n element.setAttribute(\n 'style',\n 'display: -webkit-flex; display: -ms-flexbox; display: flex;'\n )\n element.innerHTML = 'hello'\n return element.querySelector('span')\n },\n}\n\n// fieldset[tabindex=0][disabled] should not be focusable, but Blink and WebKit disagree\n// @specification https://www.w3.org/TR/html5/disabled-elements.html#concept-element-disabled\n// @browser-issue Chromium https://crbug.com/453847\n// @browser-issue WebKit https://bugs.webkit.org/show_bug.cgi?id=141086\nvar focusFieldsetDisabled = {\n element: 'fieldset',\n mutate: function mutate(element) {\n element.setAttribute('tabindex', 0)\n element.setAttribute('disabled', 'disabled')\n },\n}\n\nvar focusFieldset = {\n element: 'fieldset',\n mutate: function mutate(element) {\n element.innerHTML = '
'\n return element.querySelector('img')\n },\n}\n\n// NOTE: https://github.com/medialize/ally.js/issues/35\n// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap\nvar focusImgUsemapTabindex = {\n element: 'div',\n mutate: function mutate(element) {\n element.innerHTML =\n '' +\n '
'\n\n return element.querySelector('img')\n },\n}\n\nvar focusInHiddenIframe = {\n element: function element(wrapper, _document) {\n var iframe = _document.createElement('iframe')\n\n // iframe must be part of the DOM before accessing the contentWindow is possible\n wrapper.appendChild(iframe)\n\n // create the iframe's default document ()\n var iframeDocument = iframe.contentWindow.document\n iframeDocument.open()\n iframeDocument.close()\n return iframe\n },\n mutate: function mutate(iframe) {\n iframe.style.visibility = 'hidden'\n\n var iframeDocument = iframe.contentWindow.document\n var input = iframeDocument.createElement('input')\n iframeDocument.body.appendChild(input)\n return input\n },\n validate: function validate(iframe) {\n var iframeDocument = iframe.contentWindow.document\n var focus = iframeDocument.querySelector('input')\n return iframeDocument.activeElement === focus\n },\n}\n\nvar result = !platform.is.WEBKIT\n\nfunction focusInZeroDimensionObject() {\n return result\n}\n\n// Firefox allows *any* value and treats invalid values like tabindex=\"-1\"\n// @browser-issue Gecko https://bugzilla.mozilla.org/show_bug.cgi?id=1128054\nvar focusInvalidTabindex = {\n element: 'div',\n mutate: function mutate(element) {\n element.setAttribute('tabindex', 'invalid-value')\n },\n}\n\nvar focusLabelTabindex = {\n element: 'label',\n mutate: function mutate(element) {\n element.setAttribute('tabindex', '-1')\n },\n validate: function validate(element, focusTarget, _document) {\n // force layout in Chrome 49, otherwise the element won't be focusable\n /* eslint-disable no-unused-vars */\n var variableToPreventDeadCodeElimination = element.offsetHeight\n /* eslint-enable no-unused-vars */\n element.focus()\n return _document.activeElement === element\n },\n}\n\nvar svg =\n 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtb' +\n 'G5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0ic3ZnIj48dGV4dCB4PSIxMCIgeT0iMjAiIGlkPSJ' +\n 'zdmctbGluay10ZXh0Ij50ZXh0PC90ZXh0Pjwvc3ZnPg=='\n\n// Note: IE10 on BrowserStack does not like this test\n\nvar focusObjectSvgHidden = {\n element: 'object',\n mutate: function mutate(element) {\n element.setAttribute('type', 'image/svg+xml')\n element.setAttribute('data', svg)\n element.setAttribute('width', '200')\n element.setAttribute('height', '50')\n element.style.visibility = 'hidden'\n },\n}\n\n// Note: IE10 on BrowserStack does not like this test\n\nvar focusObjectSvg = {\n name: 'can-focus-object-svg',\n element: 'object',\n mutate: function mutate(element) {\n element.setAttribute('type', 'image/svg+xml')\n element.setAttribute('data', svg)\n element.setAttribute('width', '200')\n element.setAttribute('height', '50')\n },\n validate: function validate(element, focusTarget, _document) {\n if (platform.is.GECKO) {\n // Firefox seems to be handling the object creation asynchronously and thereby produces a false negative test result.\n // Because we know Firefox is able to focus object elements referencing SVGs, we simply cheat by sniffing the user agent string\n return true\n }\n\n return _document.activeElement === element\n },\n}\n\n// Every Environment except IE9 considers SWF objects focusable\nvar result$1 = !platform.is.IE9\n\nfunction focusObjectSwf() {\n return result$1\n}\n\nvar focusRedirectImgUsemap = {\n element: 'div',\n mutate: function mutate(element) {\n element.innerHTML =\n '' +\n '
'\n\n // focus the
, not the